home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-08-06 | 1.4 KB | 35 lines | [TEXT/KAHL] |
- //••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
- // //
- // //
- // Copyright PennyWise Software, 1994. //
- // //
- // Part of the PennyWise Software Application Framework //
- // //
- // //
- // WindowID.h Written by Peter Kaplan //
- // //
- // //
- //••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
- // //
- // This is the file the programmer will edit to add window //
- // types. It never needs to be included because "PWWindowList.h" //
- // will do the work. Just make the changes in this file and forget //
- // them. //
- // //
- // This file insures that there will be no reason to edit the //
- // "PWWindowList.h" file--because it includes this file right at //
- // the beginning. //
- // //
- //••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
- #ifndef _APPLICATIONS_WINDOW_IDS
- #define _APPLICATIONS_WINDOW_IDS
-
- // Each type of window must have its own type defined here
- // Add yours to the end of the list
- #define kWINDOW_ID_NONE 0
-
- // Increment this number by one for each
- // window type you add
- #define kMAX_WINDOW_IDS 1 /* This must change per Application */
-
- #endif